home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 23
/
Amiga Format AFCD23 (Feb 1998, Issue 107).iso
/
-seriously_amiga-
/
shareware
/
programming
/
other
/
studio16add
/
scripts
/
downsamplestudio
< prev
next >
Wrap
AmigaDOS Script File
|
1997-12-01
|
749b
|
31 lines
.key PATTERN/A,DESTDIR/A
.bra {
.ket }
; This script can downsample many Studio 16 files based
; on pattern matching.
;
; $VER: DownsampleStudio 1.0 (12.11.97)
; By Kenneth "Kenny" Nilsen (kenny@bgnett.no)
;
; USAGE: DownsampleStudio <pattern> <destdir/>
;
; NOTE: The commands must be in the command search path. To be safe
; copy the commands in C: or add the path where you keep the commands to
; the global search path (startup-sequence: path <path> ADD).
;-- convert files
list {pattern} files lformat="echo *"Processing file '%N'...*"*nS16DownSample %P%N {DESTDIR}%N.ds" >t:tmp.16
echo "Downsampling Studio 16 file(s).. please wait!"
execute t:tmp.16
if WARN
echo "Error occured while downsampling files!"
endif
echo "Done"
lab Final